home *** CD-ROM | disk | FTP | other *** search
/ Eros Sotto I Mari 6 / Eros Sotto I Mari 6.iso / setup.mst < prev    next >
Text File  |  1994-11-15  |  11KB  |  302 lines

  1. '**************************************************************************
  2. '*                  VfW 1.1d Runtime Setup
  3. '*    JohnT - 11/15/94: added Brad's code to short-circuit restarting Windows.
  4. '**************************************************************************
  5. '$INCLUDE 'setupapi.inc'
  6. '$INCLUDE 'mscpydis.inc'    ''System
  7. '$INCLUDE 'msdetect.inc'    ''Detects Avalilable Disk Space
  8.  
  9. ''Dialog ID's
  10. CONST WELCOME       = 100
  11. CONST ASKQUIT       = 200
  12. CONST EXITFAILURE   = 400
  13. CONST EXITQUIT      = 600
  14. CONST EXITSUCCESS   = 700
  15. CONST APPHELP       = 900
  16. CONST CHECK         = 2500
  17. CONST SMALLWIN      = 2200
  18. CONST RESTART       = 2600
  19. CONST RESTARTII     = 2700
  20.  
  21. ''Bitmap ID
  22. CONST LOGO = 1
  23.  
  24. GLOBAL SizeReq&  '' Total Disk Size required for installation
  25.  
  26. ''File Types
  27. GLOBAL WinDir$
  28. GLOBAL WinSysDir$
  29. GLOBAL WinSys32Dir$
  30. GLOBAL WINDRIVE$    ''Windows Drive Letter.
  31. GLOBAL CHECKSTATES$
  32. GLOBAL MinorVer%
  33. GLOBAL OnNT$
  34.  
  35. DECLARE SUB Install
  36. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  37. DECLARE FUNCTION OnWindowsNT LIB "INIUPD.DLL" AS INTEGER
  38. DECLARE FUNCTION VflatdPresent LIB "iniupd.DLL" AS INTEGER
  39. DECLARE SUB Reboot LIB "iniupd.dll"
  40. DECLARE fUNCTION ExitWindowsExec  LIB "User" (Exec$, Param$) AS INTEGER
  41.  
  42. INIT:
  43.   
  44.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  45.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  46.     
  47.     WIN32ENABLED% = 0
  48.     MajorVer% = GetWindowsMajorVersion()
  49.     MinorVer% = GetWindowsMinorVersion()
  50.     Processor% = GetProcessorType()
  51.     WinDir$ = GetWindowsDir()
  52.     DEST$ = GetWindowsDir()
  53.     WinSysDir$ = GetWindowsSysDir()
  54.     WinSys32Dir$ = WinDir$ + "system32"
  55.  
  56.     IF MajorVer% < 3 OR (MajorVer% = 3 AND MinorVer% < 10) THEN
  57.     i% = DoMsgBox("Microsoft Windows version 3.10 or greater is required for this software.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  58.     END
  59.     END IF
  60.  
  61.     'Prevents installation on 286
  62.     IF Processor% < 3 THEN
  63.     i% = DoMsgBox("Video for Windows requires a 386 or greater processor or emulator.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  64.     END
  65.     END IF
  66.  
  67.     ' Use Wowexec to determine version of NT.  3.1 did not stamp wowexec and wow returns 3.1 as version
  68.     IF OnWindowsNT() THEN
  69.       OnNT$ = "TRUE"
  70.       WowVersion$ = GetVersionOfFile(WinSys32Dir$ + "\wowexec.exe")
  71.       IF WowVersion$ = "" THEN
  72.          i% = DoMsgBox("Video for Windows does not run on Windows NT 3.1.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  73.          END
  74.       END IF
  75.     END IF
  76.  
  77.     SetBitmap CUIDLL$, LOGO
  78.     SetTitle "Video for Windows 1.1d Runtime"
  79.  
  80.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  81.     IF szInf$ = "" THEN
  82.        szInf$ = GetSymbolValue("STF_CWDDIR") + "SETUP.INF"
  83.     END IF
  84.     ReadInfFile szInf$
  85.  
  86.     WINDRIVE$ = MID$(GetWindowsDir, 1, 1)
  87.  
  88. WELCOME:
  89.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  90.     IF sz$ = "CONTINUE" THEN
  91.        UIPop 1
  92.      ELSE
  93.     GOSUB ASKQUIT
  94.     GOTO WELCOME
  95.     END IF
  96.  
  97. ''Prepare Copy list and check size
  98.  
  99.     ClearCopyList
  100.     SrcDir$ = GetSymbolValue("STF_SRCDIR")
  101.  
  102. ''  Runtime files (on Windows disk)
  103. ''  Do not install OLE or MPlayer if on next release of NT or Windows
  104.  
  105.     IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN            'These files not necessary on Windows NT
  106.     AddSectionFilesToCopyList "MPlayer", SrcDir$, WinDir$
  107.     AddSectionFilesToCopyList "OLE2", SrcDir$, WinSysDir$
  108.     END IF
  109.     AddSectionFilesToCopyList "VfW Runtime", SrcDir$, WinSysDir$
  110.     AddSectionFilesToCopyList "ACM Drivers", SrcDir$, WinSysDir$
  111.     AddSectionFilesToCopyList "AVICodecs", SrcDir$, WinSysDir$
  112.     IF OnNT$ = "TRUE" THEN
  113.     AddSectionFilesToCopyList "NT MSVideo", SrcDir$, WinSys32Dir$
  114.     ENDIF
  115. ''*************************************************************************************************************************
  116. ''*************************************************************************************************************************
  117. ''To add a DCI provider, please un-comment the AddSectionFilesToCopyList,
  118. ''and add a "DCI Provider" section with to the SETUP.INF file.
  119. ''
  120. ''    AddSectionFilesToCopyList "DCI Provider", SrcDir$, WinSysDir$
  121. ''*************************************************************************************************************************
  122. ''*************************************************************************************************************************
  123.  
  124. ''  Check windrive diskspace
  125.     SizeReq& = GetCopyListCost ("","", "")
  126.     IF SizeReq& <> 0 THEN
  127.     GOSUB SMALLWIN
  128.     END
  129.     END IF
  130.  
  131. Install
  132.  
  133. '' *** Running from another Install, just inform user to restart Windows before running DVP then terminate
  134. i% = DoMsgBox("Video For Windows installation is complete.  Restart Windows before running this application.", "VFW Setup", MB_OK+MB_TASKMODAL+MB_ICONINFORMATION)
  135.  
  136. ''and then quit to return to main installation program
  137. END
  138.  
  139. '' Restart Windows: if it has to updates ACM from DOS, it restarts Windows automatically
  140. '' else, it gives the user the choice
  141.     RESTRT% = RestartListEmpty ()
  142.     Exe$ = DEST$ + "\_msrstrt.exe"
  143.     Batch$ = DEST$ + "\_mssetup.bat"
  144.     empty$ = ""
  145. RESTART:
  146.     IF RESTRT% = 0 THEN
  147.        sz$ = UIStartDlg(CUIDLL$, RESTART, "FInfo0DlgProc", 0, "")
  148.        IF sz$ = "REACTIVATE" THEN
  149.       GOTO RESTART
  150.        ENDIF
  151.        I% = ExitExecRestart ()
  152.        RemoveFile Exe$, cmoForce
  153.        RemoveFile Batch$, cmoForce
  154.        END
  155.     ELSE
  156.        sz$ = UIStartDlg(CUIDLL$, RESTARTII, "FQuitDlgProc", 0, "")
  157.        IF sz$ = "CONTINUE" THEN
  158.       I% = ExitWindowsExec (Exe$, empty$)
  159.       IF I% = 0 THEN
  160.          GOTO RESTART
  161.       ELSE
  162.          END
  163.      ENDIF
  164.        ELSEIF sz$ = "EXIT" THEN
  165.       UIPopAll
  166.       END
  167.        ELSEIF sz$ = "REACTIVATE" THEN
  168.       GOTO RESTART
  169.        ELSE
  170.       UIPop 1
  171.        END IF
  172.     END IF
  173.  
  174.  
  175. QUIT:
  176.     ON ERROR GOTO ERRQUIT
  177.  
  178.     IF ERR = 0 THEN
  179.     dlg% = EXITSUCCESS
  180.     ELSEIF ERR = STFQUIT THEN
  181.     dlg% = EXITQUIT
  182.     ELSE
  183.     dlg% = EXITFAILURE
  184.     END IF
  185. QUITL1:
  186.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  187.     IF sz$ = "REACTIVATE" THEN
  188.     GOTO QUITL1
  189.     END IF
  190.     UIPop 1
  191.     END
  192.  
  193. ERRQUIT:
  194.     i% = DoMsgBox("An installation problem occured, call the product support service", "Setup Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  195.     END
  196.  
  197.  
  198. ASKQUIT:
  199.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  200.  
  201.     IF sz$ = "EXIT" THEN
  202.     UIPopAll
  203. ''        ERROR STFQUIT
  204.     END
  205.     ELSEIF sz$ = "REACTIVATE" THEN
  206.     GOTO ASKQUIT
  207.     ELSE
  208.     UIPop 1
  209.     END IF
  210.     RETURN
  211.  
  212. SMALLWIN:
  213.     sz$ = UIStartDlg(CUIDLL$, SMALLWIN, "FInfo0DlgProc", 0, "")
  214.     IF sz$ = "REACTIVATE" THEN
  215.     GOTO SMALLWIN
  216.     END IF
  217.     UIPop 1
  218.     RETURN
  219.  
  220. '**
  221. '** Purpose:
  222. '**     Performs all installation operations.
  223. '** Arguments:
  224. '**     none.
  225. '** Returns:
  226. '**     none.
  227. '*************************************************************************
  228. SUB Install STATIC
  229.  
  230.     SetRestartDir WinDir$
  231.     CopyFilesInCopyList
  232.  
  233. ''Updating WIN.INI and SYSTEM.INI
  234. ''Only update SYSTEM.INI  on NT or next version of Windows for other codecs
  235.  
  236. IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN
  237.     IF VflatdPresent() = 0 THEN
  238.        CreateSysIniKeyValue WinDir$ + "system.ini", "386Enh", "device", "dva.386", cmoOverwrite
  239.     END IF
  240. END IF
  241.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV32", "ir32.dll", cmoOverwrite
  242.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV31", "ir32.dll", cmoOverwrite
  243.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.RT21", "ir21.dll", cmoOverwrite
  244.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.YVU9", "iyvu9.dll", cmoOverwrite
  245.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.CVID", "iccvid.drv", cmoOverwrite
  246.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite
  247.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MRLE", "MSRLE.drv", cmoOverwrite
  248.     CreateIniKeyValue WinDir$ + "WIN.INI", "mci extensions", "avi", "AVIVideo", cmoOverwrite
  249.     CreateIniKeyValue WinDir$ + "system.ini", "mci", "AVIVideo", "mciavi.drv", cmoOverwrite
  250.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "WaveMapper", "msacm.drv", cmoOverwrite
  251.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.msadpcm", "msadpcm.acm", cmoOverwrite
  252.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.imaadpcm", "imaadpcm.acm", cmoOverwrite
  253.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "ir21.dll", "Intel Indeo(TM) Video R2.1", cmoOverwrite
  254.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msacm.drv", "Microsoft Sound Mapper V2.00", cmoOverwrite
  255.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msadpcm.acm", "Microsoft ADPCM Codec V2.00", cmoOverwrite
  256.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "imaadpcm.acm", "Microsoft IMA ADPCM Codec V2.00", cmoOverwrite
  257.  
  258. ''*************************************************************************************************************************
  259. ''*************************************************************************************************************************
  260. ''To add a DCI provider, please un-comment the UDH line, and un-comment and replace the    <provider> with your own file name
  261. ''
  262. ''  CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "DCI", "<provider>", cmoOverwrite
  263. ''  CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "vids.draw", "udh.dll", cmoOverwrite
  264. ''*************************************************************************************************************************
  265. ''*************************************************************************************************************************
  266.  
  267. ''Do not register components not installed with Video for Windows on NT or next version of Windows.
  268. IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN
  269.     Run ("regedit.exe /s " + MakePath(WinDir$, "mplayer.reg"))
  270.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "OLE2.reg"))
  271.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "cleanup.reg"))
  272.  
  273. '' Mplayer
  274.     CreateProgmanItem "Accessories", "Media Player", MakePath(WinDir$, "mplayer.exe"), "", cmoOverwrite
  275.  
  276. END IF    ''NT and next version of Windows installation stop here.
  277.  
  278.     Run ("profdisp.exe")   
  279. END SUB
  280.  
  281. '**
  282. '** Purpose:
  283. '**     Appends a file name to the end of a directory path,
  284. '**     inserting a backslash character as needed.
  285. '** Arguments:
  286. '**     szDir$  - full directory path (with optional ending "\")
  287. '**     szFile$ - filename to append to directory
  288. '** Returns:
  289. '**     Resulting fully qualified path name.
  290. '*************************************************************************
  291. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  292.     IF szDir$ = "" THEN
  293.     MakePath = szFile$
  294.     ELSEIF szFile$ = "" THEN
  295.     MakePath = szDir$
  296.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  297.     MakePath = szDir$ + szFile$
  298.     ELSE
  299.     MakePath = szDir$ + "\" + szFile$
  300.     END IF
  301. END FUNCTION
  302.